home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 6 / QRZ Ham Radio Callsign Database - Volume 6.iso / pc / files / dsp / dspkgctr.z / dspkgctr / gcc / Maketcov < prev    next >
Encoding:
Text File  |  1992-06-08  |  669 b   |  19 lines

  1. # $Id: Maketcov,v 1.1 91/11/26 13:16:38 pete Exp $
  2.  
  3. TCOV    = tcov
  4. TFLAGS    = -a
  5.  
  6. # Language-independent object files.
  7. SRCS    = toplev.c version.c tree.c print-tree.c stor-layout.c fold-const.c \
  8.     rtl.c rtlanal.c expr.c stmt.c expmed.c explow.c optabs.c varasm.c \
  9.     symout.c dbxout.c sdbout.c emit-rtl.c insn-emit.c \
  10.     integrate.c jump.c cse.c loop.c flow.c stupid.c combine.c \
  11.     regclass.c local-alloc.c global-alloc.c reload.c reload1.c caller-save.c \
  12.     insn-peep.c final.c recog.c insn-recog.c insn-extract.c insn-output.c
  13.  
  14. C_SRCS    = c-parse.tab.c c-decl.c c-typeck.c c-convert.c
  15.  
  16. cc1_tcov: $(C_SRCS) $(SRCS)
  17.     @echo "Begin tcov for cc1"
  18.     $(TCOV) $(TFLAGS) $(C_SRCS) $(SRCS)
  19.